docs(memo): document memo_key per-parameter override#2000
Merged
Conversation
Add a section to advanced_topics/memoization_keys.mdx covering the `memo_key=` decorator argument added in #1888 — per-call-site counterpart to the existing type-level customization mechanisms (`__coco_memo_key__`, `register_memo_key_function`). Covers callable vs `None` semantics, `self`/`*args`/`**kwargs` handling, and decoration-time validation. Add a pointer from the function programming guide's "Customizing data fingerprinting" subsection so users following the main guide find their way to the new section.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
memo_key=decorator argument added in Add per-argument memo_key support to @coco.fn #1888 as a new section inadvanced_topics/memoization_keys.mdx, alongside the existing type-level customization paths (__coco_memo_key__,register_memo_key_function).Nonesemantics,self/*args/**kwargshandling, decoration-time validation, and a "picking the right tool" tip.Test plan